.navbar {
    background-color: #0057b3e2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.navbar-toggler {
    border: none;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.navbar .nav-link.orange-text,
.navbar .nav-link.disabled {
    color: #ffa500 !important;
}



/* Varsayılan (tüm ekran boyutları için) */
#logo {
    height: 100px;
}


@media (max-width: 576px) {
    #logo {
        height: 60px;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .navbar .navbar-brand .logo {
        height: 3.5rem;
    }
}

@media (min-width: 993px) {
    .navbar .navbar-brand .logo {
        height: 4.5rem;
    }
}